/*
* BKElectionView.java
*/
package bkelection;
import org.jdesktop.application.Action;
import org.jdesktop.application.ResourceMap;
import org.jdesktop.application.SingleFrameApplication;
import org.jdesktop.application.FrameView;
import org.jdesktop.application.TaskMonitor;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import javax.swing.Timer;
import javax.swing.Icon;
import javax.swing.JDialog;
import javax.swing.JFrame;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
/**
* The application's main frame.
*/
public class BKElectionView extends FrameView {
public String[] candidate;
public void setCandidate(String[] i)
{
candidate = i;
}
public String[] getCandidate(String i)
{
return candidate;
}
public BKElectionView(SingleFrameApplication app) {
super(app);
initComponents();
// status bar initialization - message timeout, idle icon and busy animation, etc
ResourceMap resourceMap = getResourceMap();
int messageTimeout = resourceMap.getInteger("StatusBar.messageTimeout");
messageTimer = new Timer(messageTimeout, new ActionListener() {
public void actionPerformed(ActionEvent e) {
statusMessageLabel.setText("");
}
});
messageTimer.setRepeats(false);
int busyAnimationRate = resourceMap.getInteger("StatusBar.busyAnimationRate");
for (int i = 0; i < busyIcons.length; i++) {
busyIcons[i] = resourceMap.getIcon("StatusBar.busyIcons[" + i + "]");
}
busyIconTimer = new Timer(busyAnimationRate, new ActionListener() {
public void actionPerformed(ActionEvent e) {
busyIconIndex = (busyIconIndex + 1) % busyIcons.length;
statusAnimationLabel.setIcon(busyIcons[busyIconIndex]);
}
});
idleIcon = resourceMap.getIcon("StatusBar.idleIcon");
statusAnimationLabel.setIcon(idleIcon);
progressBar.setVisible(false);
// connecting action tasks to status bar via TaskMonitor
TaskMonitor taskMonitor = new TaskMonitor(getApplication().getContext());
taskMonitor.addPropertyChangeListener(new java.beans.PropertyChangeListener() {
public void propertyChange(java.beans.PropertyChangeEvent evt) {
String propertyName = evt.getPropertyName();
if ("started".equals(propertyName)) {
if (!busyIconTimer.isRunning()) {
statusAnimationLabel.setIcon(busyIcons[0]);
busyIconIndex = 0;
busyIconTimer.start();
}
progressBar.setVisible(true);
progressBar.setIndeterminate(true);
} else if ("done".equals(propertyName)) {
busyIconTimer.stop();
statusAnimationLabel.setIcon(idleIcon);
progressBar.setVisible(false);
progressBar.setValue(0);
} else if ("message".equals(propertyName)) {
String text = (String)(evt.getNewValue());
statusMessageLabel.setText((text == null) ? "" : text);
messageTimer.restart();
} else if ("progress".equals(propertyName)) {
int value = (Integer)(evt.getNewValue());
progressBar.setVisible(true);
progressBar.setIndeterminate(false);
progressBar.setValue(value);
}
}
});
}
@Action
public void showAboutBox() {
if (aboutBox == null) {
JFrame mainFrame = BKElectionApp.getApplication().getMainFrame();
aboutBox = new BKElectionAboutBox(mainFrame);
aboutBox.setLocationRelativeTo(mainFrame);
}
BKElectionApp.getApplication().show(aboutBox);
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
mainPanel = new javax.swing.JPanel();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
lName = new javax.swing.JTextField();
fName = new javax.swing.JTextField();
ID = new javax.swing.JTextField();
jScrollPane1 = new javax.swing.JScrollPane();
PresChoice = new javax.swing.JList();
jScrollPane2 = new javax.swing.JScrollPane();
VPChoice = new javax.swing.JList();
jScrollPane3 = new javax.swing.JScrollPane();
CSChoice = new javax.swing.JList();
jScrollPane4 = new javax.swing.JScrollPane();
RSChoice = new javax.swing.JList();
jScrollPane5 = new javax.swing.JScrollPane();
TChoice = new javax.swing.JList();
jLabel4 = new javax.swing.JLabel();
jLabel5 = new javax.swing.JLabel();
jLabel6 = new javax.swing.JLabel();
jLabel7 = new javax.swing.JLabel();
jLabel8 = new javax.swing.JLabel();
VoteButton = new javax.swing.JButton();
menuBar = new javax.swing.JMenuBar();
javax.swing.JMenu fileMenu = new javax.swing.JMenu();
javax.swing.JMenuItem exitMenuItem = new javax.swing.JMenuItem();
javax.swing.JMenu helpMenu = new javax.swing.JMenu();
javax.swing.JMenuItem aboutMenuItem = new javax.swing.JMenuItem();
statusPanel = new javax.swing.JPanel();
javax.swing.JSeparator statusPanelSeparator = new javax.swing.JSeparator();
statusMessageLabel = new javax.swing.JLabel();
statusAnimationLabel = new javax.swing.JLabel();
progressBar = new javax.swing.JProgressBar();
mainPanel.setMaximumSize(new java.awt.Dimension(838, 363));
mainPanel.setMinimumSize(new java.awt.Dimension(836, 362));
mainPanel.setName("mainPanel"); // NOI18N
org.jdesktop.application.ResourceMap resourceMap = org.jdesktop.application.Application.getInstance(bkelection.BKElectionApp.class).getContext().getResourceMap(BKElectionView.class);
jLabel1.setText(resourceMap.getString("jLabel1.text")); // NOI18N
jLabel1.setName("jLabel1"); // NOI18N
jLabel2.setText(resourceMap.getString("jLabel2.text")); // NOI18N
jLabel2.setName("jLabel2"); // NOI18N
jLabel3.setText(resourceMap.getString("jLabel3.text")); // NOI18N
jLabel3.setName("jLabel3"); // NOI18N
lName.setText(resourceMap.getString("lName.text")); // NOI18N
lName.setName("lName"); // NOI18N
fName.setName("fName"); // NOI18N
ID.setName("ID"); // NOI18N
jScrollPane1.setName("jScrollPane1"); // NOI18N
Officers list = new Officers();
list.readOfficers("officers.txt");
candidate = list.getP();
PresChoice.setModel(new javax.swing.AbstractListModel() {
String[] strings = { candidate[0], candidate[1], candidate[2], candidate[3] };
public int getSize() { return strings.length; }
public Object getElementAt(int i) { return strings[i]; }
});
PresChoice.setSelectionMode(javax.swing.ListSelectionModel.SINGLE_SELECTION);
PresChoice.setName("PresChoice"); // NOI18N
jScrollPane1.setViewportView(PresChoice);
jScrollPane2.setName("jScrollPane2"); // NOI18N
Officers list1 = new Officers();
list1.readOfficers("officers.txt");
candidate = list1.getVP();
VPChoice.setModel(new javax.swing.AbstractListModel() {
String[] strings = { candidate[0], candidate[1], candidate[2], candidate[3] };
public int getSize() { return strings.length; }
public Object getElementAt(int i) { return strings[i]; }
});
VPChoice.setSelectionMode(javax.swing.ListSelectionModel.SINGLE_SELECTION);
VPChoice.setName("VPChoice"); // NOI18N
jScrollPane2.setViewportView(VPChoice);
jScrollPane3.setName("jScrollPane3"); // NOI18N
Officers list2 = new Officers();
list2.readOfficers("officers.txt");
candidate = list.getCS();
CSChoice.setModel(new javax.swing.AbstractListModel() {
String[] strings = { candidate[0], candidate[1], candidate[2], candidate[3] };
public int getSize() { return strings.length; }
public Object getElementAt(int i) { return strings[i]; }
});
CSChoice.setSelectionMode(javax.swing.ListSelectionModel.SINGLE_SELECTION);
CSChoice.setName("CSChoice"); // NOI18N
jScrollPane3.setViewportView(CSChoice);
jScrollPane4.setName("jScrollPane4"); // NOI18N
Officers list3 = new Officers();
list3.readOfficers("officers.txt");
candidate = list.getRS();
RSChoice.setModel(new javax.swing.AbstractListModel() {
String[] strings = { candidate[0], candidate[1], candidate[2], candidate[3] };
public int getSize() { return strings.length; }
public Object getElementAt(int i) { return strings[i]; }
});
RSChoice.setSelectionMode(javax.swing.ListSelectionModel.SINGLE_SELECTION);
RSChoice.setName("RSChoice"); // NOI18N
jScrollPane4.setViewportView(RSChoice);
jScrollPane5.setName("jScrollPane5"); // NOI18N
Officers list4 = new Officers();
list4.readOfficers("officers.txt");
candidate = list.getT();
TChoice.setModel(new javax.swing.AbstractListModel() {
String[] strings = { candidate[0], candidate[1], candidate[2], candidate[3] };
public int getSize() { return strings.length; }
public Object getElementAt(int i) { return strings[i]; }
});
TChoice.setSelectionMode(javax.swing.ListSelectionModel.SINGLE_SELECTION);
TChoice.setName("TChoice"); // NOI18N
jScrollPane5.setViewportView(TChoice);
jLabel4.setText(resourceMap.getString("jLabel4.text")); // NOI18N
jLabel4.setName("jLabel4"); // NOI18N
jLabel5.setText(resourceMap.getString("jLabel5.text")); // NOI18N
jLabel5.setName("jLabel5"); // NOI18N
jLabel6.setText(resourceMap.getString("jLabel6.text")); // NOI18N
jLabel6.setName("jLabel6"); // NOI18N
jLabel7.setText(resourceMap.getString("jLabel7.text")); // NOI18N
jLabel7.setName("jLabel7"); // NOI18N
jLabel8.setText(resourceMap.getString("jLabel8.text")); // NOI18N
jLabel8.setName("jLabel8"); // NOI18N
VoteButton.setText(resourceMap.getString("VoteButton.text")); // NOI18N
VoteButton.setName("VoteButton"); // NOI18N
VoteButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
VoteButtonActionPerformed(evt);
}
});
javax.swing.GroupLayout mainPanelLayout = new javax.swing.GroupLayout(mainPanel);
mainPanel.setLayout(mainPanelLayout);
mainPanelLayout.setHorizontalGroup(
mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(mainPanelLayout.createSequentialGroup()
.addGap(22, 22, 22)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jLabel3)
.addComponent(jLabel2)
.addComponent(jLabel1))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(mainPanelLayout.createSequentialGroup()
.addComponent(VoteButton)
.addGap(182, 182, 182)
.addComponent(jLabel8))
.addGroup(mainPanelLayout.createSequentialGroup()
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(lName, javax.swing.GroupLayout.PREFERRED_SIZE, 118, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(fName, javax.swing.GroupLayout.PREFERRED_SIZE, 118, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(ID, javax.swing.GroupLayout.PREFERRED_SIZE, 118, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addGroup(mainPanelLayout.createSequentialGroup()
.addGap(44, 44, 44)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(jScrollPane5, javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jScrollPane3, javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jScrollPane1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 174, Short.MAX_VALUE))
.addGap(43, 43, 43)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jScrollPane4)
.addComponent(jScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 205, Short.MAX_VALUE)
.addComponent(jLabel5)))
.addGroup(mainPanelLayout.createSequentialGroup()
.addGap(126, 126, 126)
.addComponent(jLabel6)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jLabel7)
.addGap(79, 79, 79)))))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, mainPanelLayout.createSequentialGroup()
.addContainerGap(299, Short.MAX_VALUE)
.addComponent(jLabel4)
.addGap(480, 480, 480))
);
mainPanelLayout.setVerticalGroup(
mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(mainPanelLayout.createSequentialGroup()
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(mainPanelLayout.createSequentialGroup()
.addGap(52, 52, 52)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel1)
.addComponent(fName, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(lName, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(26, 26, 26)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel3)
.addComponent(ID, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addGroup(mainPanelLayout.createSequentialGroup()
.addGap(12, 12, 12)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel4)
.addComponent(jLabel5))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(jScrollPane2, javax.swing.GroupLayout.Alignment.LEADING, 0, 0, Short.MAX_VALUE)
.addComponent(jScrollPane1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 76, Short.MAX_VALUE))
.addGap(5, 5, 5)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel6)
.addComponent(jLabel7))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jScrollPane4, 0, 0, Short.MAX_VALUE)
.addComponent(jScrollPane3, javax.swing.GroupLayout.DEFAULT_SIZE, 74, Short.MAX_VALUE))))
.addGap(14, 14, 14)
.addGroup(mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(VoteButton)
.addComponent(jLabel8))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jScrollPane5, javax.swing.GroupLayout.PREFERRED_SIZE, 76, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(20, Short.MAX_VALUE))
);
menuBar.setName("menuBar"); // NOI18N
fileMenu.setText(resourceMap.getString("fileMenu.text")); // NOI18N
fileMenu.setName("fileMenu"); // NOI18N
javax.swing.ActionMap actionMap = org.jdesktop.application.Application.getInstance(bkelection.BKElectionApp.class).getContext().getActionMap(BKElectionView.class, this);
exitMenuItem.setAction(actionMap.get("quit")); // NOI18N
exitMenuItem.setName("exitMenuItem"); // NOI18N
fileMenu.add(exitMenuItem);
menuBar.add(fileMenu);
helpMenu.setText(resourceMap.getString("helpMenu.text")); // NOI18N
helpMenu.setName("helpMenu"); // NOI18N
aboutMenuItem.setAction(actionMap.get("showAboutBox")); // NOI18N
aboutMenuItem.setName("aboutMenuItem"); // NOI18N
helpMenu.add(aboutMenuItem);
menuBar.add(helpMenu);
statusPanel.setName("statusPanel"); // NOI18N
statusPanelSeparator.setName("statusPanelSeparator"); // NOI18N
statusMessageLabel.setName("statusMessageLabel"); // NOI18N
statusAnimationLabel.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
statusAnimationLabel.setName("statusAnimationLabel"); // NOI18N
progressBar.setName("progressBar"); // NOI18N
javax.swing.GroupLayout statusPanelLayout = new javax.swing.GroupLayout(statusPanel);
statusPanel.setLayout(statusPanelLayout);
statusPanelLayout.setHorizontalGroup(
statusPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(statusPanelSeparator, javax.swing.GroupLayout.DEFAULT_SIZE, 837, Short.MAX_VALUE)
.addGroup(statusPanelLayout.createSequentialGroup()
.addContainerGap()
.addComponent(statusMessageLabel)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 673, Short.MAX_VALUE)
.addComponent(progressBar, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(statusAnimationLabel)
.addContainerGap())
);
statusPanelLayout.setVerticalGroup(
statusPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(statusPanelLayout.createSequentialGroup()
.addComponent(statusPanelSeparator, javax.swing.GroupLayout.PREFERRED_SIZE, 2, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(statusPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(statusMessageLabel)
.addComponent(statusAnimationLabel)
.addComponent(progressBar, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(3, 3, 3))
);
setComponent(mainPanel);
setMenuBar(menuBar);
setStatusBar(statusPanel);
}// </editor-fold>//GEN-END:initComponents
/**
* VoteButton is attached to button to initialize the voting process for voters
* Checks each office category and stores values to Choices
* Uses verify method to insure that the user entered exists
* If verified, then resets fields
* If not verified, returns an error message for the user to find how to fix the problem
*/
private void VoteButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_VoteButtonActionPerformed
BKElectionApp student = new BKElectionApp();
student.setFN(fName.getText().toLowerCase());
student.setLN(lName.getText().toLowerCase());
student.setID(Integer.parseInt(ID.getText()));
int pres = PresChoice.getSelectedIndex();
int vpres = VPChoice.getSelectedIndex();
int treas = TChoice.getSelectedIndex();
int cs = CSChoice.getSelectedIndex();
int rs = RSChoice.getSelectedIndex();
String presChoice = "NoVote";
String vpresChoice = "NoVote";
String treasChoice = "NoVote";
String csChoice = "NoVote";
String rsChoice = "NoVote";
Officers selection = new Officers();
selection.readOfficers("officers.txt");
int i = 0;
while (i <= 3)
{
if (pres == i)
{
presChoice = selection.getP()[i];
}
if (vpres == i)
{
vpresChoice = selection.getVP()[i];
}
if (treas == i)
{
treasChoice = selection.getT()[i];
}
if (cs == i)
{
csChoice = selection.getCS()[i];
}
if (rs == i)
{
rsChoice = selection.getRS()[i];
}
if (pres == -1)
{
presChoice = "NoVote";
}
if (vpres == -1)
{
vpresChoice = "NoVote";
}
if (treas == -1)
{
treasChoice = "NoVote";
}
if (cs == -1)
{
csChoice = "NoVote";
}
if (rs == -1)
{
rsChoice = "NoVote";
}
i++;
}
ArrayList<StudentInfo> database = StudentInfo.importStudents();
if (StudentInfo.verify(database, student.getFN(), student.getLN(), student.getID()))
{
StudentInfo a = new StudentInfo(student.getFN(), student.getLN(), student.getID(), presChoice, vpresChoice, treasChoice, rsChoice, csChoice);
StudentInfo.exportStudent(a);
fName.setText("");
lName.setText("");
ID.setText("");
PresChoice.clearSelection();
VPChoice.clearSelection();
TChoice.clearSelection();
CSChoice.clearSelection();
RSChoice.clearSelection();
}
if (StudentInfo.getAlmostID())
{
JOptionPane.showMessageDialog(null,"You ID Number is not correct");
}
if (StudentInfo.getAlmostFN())
{
JOptionPane.showMessageDialog(null,"Your First Name entry is not correct");
}
if (StudentInfo.getAlmostLN())
{
JOptionPane.showMessageDialog(null,"Your Last Name entry is not correct");
}
StudentInfo.resetAlmostID();
StudentInfo.resetAlmostFN();
StudentInfo.resetAlmostLN();
if ((student.getFN().equals(fName.getText().toLowerCase())) && (student.getLN().equals(lName.getText().toLowerCase())) && (student.getID() == Integer.parseInt(ID.getText())))
{
JOptionPane.showMessageDialog(null,"There is an error in you entry, \nCAUTION: YOU HAVE NOT VOTED YET!");
}
if (fName.getText().equals(""))
{
JOptionPane.showMessageDialog(null,"Thank You for Voting");
System.exit(0);
}
}//GEN-LAST:event_VoteButtonActionPerformed
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JList CSChoice;
private javax.swing.JTextField ID;
private javax.swing.JList PresChoice;
private javax.swing.JList RSChoice;
private javax.swing.JList TChoice;
private javax.swing.JList VPChoice;
private javax.swing.JButton VoteButton;
private javax.swing.JTextField fName;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JLabel jLabel5;
private javax.swing.JLabel jLabel6;
private javax.swing.JLabel jLabel7;
private javax.swing.JLabel jLabel8;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JScrollPane jScrollPane2;
private javax.swing.JScrollPane jScrollPane3;
private javax.swing.JScrollPane jScrollPane4;
private javax.swing.JScrollPane jScrollPane5;
private javax.swing.JTextField lName;
private javax.swing.JPanel mainPanel;
private javax.swing.JMenuBar menuBar;
private javax.swing.JProgressBar progressBar;
private javax.swing.JLabel statusAnimationLabel;
private javax.swing.JLabel statusMessageLabel;
private javax.swing.JPanel statusPanel;
// End of variables declaration//GEN-END:variables
private final Timer messageTimer;
private final Timer busyIconTimer;
private final Icon idleIcon;
private final Icon[] busyIcons = new Icon[15];
private int busyIconIndex = 0;
private JDialog aboutBox;
}